.footer{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(15, 15, 15);
  justify-content: space-evenly;
}

.footerleft img{
  width: 80px;
  padding: 2em;
}

.rightText{
  padding: 2em;
}

.rightText > *{
  color: #525252;
  transition: color 0.4s;
}

.rightText > *:hover{
  color: #bbbbbb;
}

@media only screen and (max-width: 280px) {
  .rightText{
    padding: 0;
    margin-right: 5px;
  }

  .rightText p{
    padding: 5px 0;
  }
}